Git checkoutで最新バージョンのタグをプルする
from 20250310
Git checkoutで最新バージョンのタグをプルする
code:sh
git fetch
code:sh
git checkout $(git tag -l | grep -v 'rc0-9*$' | sort -V | tail -n 1)